home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_mysql.idb / usr / freeware / include / mysql / my_net.h.z / my_net.h
C/C++ Source or Header  |  2002-10-07  |  3KB  |  84 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17.  
  18. /* thread safe version of some common functions */
  19.  
  20. /* for thread safe my_inet_ntoa */
  21. #ifdef    __cplusplus
  22. extern "C" {
  23. #endif /* __cplusplus */
  24.  
  25. #if !defined(MSDOS) && !defined(__WIN__) && !defined(__BEOS__)
  26. #ifdef HAVE_SYS_SOCKET_H
  27. #include <sys/socket.h>
  28. #endif
  29. #ifdef HAVE_NETINET_IN_H
  30. #include <netinet/in.h>
  31. #endif
  32. #ifdef HAVE_ARPA_INET_H
  33. #include <arpa/inet.h>
  34. #endif
  35. #endif /* !defined(MSDOS) && !defined(__WIN__) */
  36.  
  37. void my_inet_ntoa(struct in_addr in, char *buf);
  38.  
  39. /*
  40.   Handling of gethostbyname_r()
  41. */
  42.  
  43. #if !defined(HPUX)
  44. struct hostent;
  45. #endif /* HPUX */
  46. #if !defined(HAVE_GETHOSTBYNAME_R)
  47. struct hostent *my_gethostbyname_r(const char *name,
  48.                    struct hostent *result, char *buffer,
  49.                    int buflen, int *h_errnop);
  50. void my_gethostbyname_r_free();
  51. #elif defined(HAVE_PTHREAD_ATTR_CREATE) || defined(_AIX) || defined(HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE)
  52. struct hostent *my_gethostbyname_r(const char *name,
  53.                    struct hostent *result, char *buffer,
  54.                    int buflen, int *h_errnop);
  55. #define my_gethostbyname_r_free()
  56. #if !defined(HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE) && !defined(HPUX)
  57. #define GETHOSTBYNAME_BUFF_SIZE sizeof(struct hostent_data)
  58. #endif /* !defined(HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE) */
  59.  
  60. #elif defined(HAVE_GETHOSTBYNAME_R_RETURN_INT)
  61. #define GETHOSTBYNAME_BUFF_SIZE sizeof(struct hostent_data)
  62. struct hostent *my_gethostbyname_r(const char *name,
  63.                    struct hostent *result, char *buffer,
  64.                    int buflen, int *h_errnop);
  65. #define my_gethostbyname_r_free()
  66. #else
  67. #define my_gethostbyname_r(A,B,C,D,E) gethostbyname_r((A),(B),(C),(D),(E))
  68. #define my_gethostbyname_r_free()
  69. #endif /* !defined(HAVE_GETHOSTBYNAME_R) */
  70.  
  71. #ifndef GETHOSTBYNAME_BUFF_SIZE
  72. #define GETHOSTBYNAME_BUFF_SIZE 2048
  73. #endif
  74.  
  75. /* On SCO you get a link error when refering to h_errno */
  76. #ifdef SCO
  77. #undef h_errno
  78. #define h_errno errno
  79. #endif
  80.  
  81. #ifdef    __cplusplus
  82. }
  83. #endif
  84.